diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 09:12:44 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 09:12:44 +0200 |
| commit | 4c5be8cf8d942743398581b46ac2c76d0ff273d8 (patch) | |
| tree | b182383a63302f24910c5534953d3624cb24f00d /src/pages/history/[date].astro | |
| parent | 490214f0a9be03130cf535bc5ae0b8aa3c6c16db (diff) | |
Initial migration
Diffstat (limited to 'src/pages/history/[date].astro')
| -rw-r--r-- | src/pages/history/[date].astro | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/pages/history/[date].astro b/src/pages/history/[date].astro new file mode 100644 index 0000000..0bd1e40 --- /dev/null +++ b/src/pages/history/[date].astro @@ -0,0 +1,23 @@ +--- +import { Geshem } from '../../components/Geshem'; +import '../../styles/global.css'; +import '../../styles/geshem.css'; + +export const prerender = false; + +const { date } = Astro.params; +--- + +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" type="image/png" href="/favicon.png" /> + <meta name="viewport" content="width=device-width" /> + <meta name="generator" content={Astro.generator} /> + <title>Geshem - Rain Radar History</title> + <meta name="description" content="Israel Rain Radar History" /> + </head> + <body> + <Geshem client:load date={date} /> + </body> +</html>
\ No newline at end of file |
